home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / userbox / publicdomain / bootgauge / install < prev    next >
Text File  |  1996-05-01  |  2KB  |  91 lines

  1. ;
  2. ;    BootGauge Install
  3. ;    ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  4. ;        © 1995/1996 by Timo C.Nentwig
  5. ;        all rights reserved.
  6. ;
  7.  
  8. (complete 0)
  9.  
  10.   (welcome "Welcome to BootGauge's Installation !\n")
  11.  
  12. (complete 3)
  13.  
  14.   (message "\n\nAttention !\n\nThis script cannot install BootGauge completely\nbut it installs all required files only.")
  15.  
  16. (complete 5)
  17.  
  18.   (message "You need at least\n\nv37+\ngtlayout.library\n\n[...]" )
  19.  
  20. (complete 10)
  21.  
  22.   (copyfiles
  23.  
  24.       (prompt "Copy main program")
  25.       (pattern "BootGauge")
  26.       (source "")
  27.       (dest "C:")
  28.       (confirm)
  29.       (infos)
  30.       (help @copyfiles-help)
  31.  
  32.   )
  33.  
  34. (complete 40)
  35.  
  36.   (makedir "envarc:BootGauge"
  37.  
  38.       (prompt "Creating directory envarc:BootGauge.\n\nBootGauge stores all its preferences in this directory." )
  39.       (confirm)
  40.       (help @makedir-help)
  41.  
  42.   )
  43.  
  44. (complete 60)
  45.  
  46.   (copyfiles
  47.  
  48.       (prompt "Shall I install the example config file ?")
  49.       (pattern "#?.prefs")
  50.       (source "misc/")
  51.       (dest "envarc:BootGauge/")
  52.       (confirm)
  53.       (infos)
  54.       (help @copyfiles-help)
  55.  
  56.   )
  57.  
  58. (complete 70)
  59.  
  60.   (copyfiles
  61.  
  62.       (prompt "Shall I install the documentation ?")
  63.       (pattern "#?.guide")
  64.       (source "help/")
  65.       (dest "help:english/")
  66.       (confirm)
  67.       (infos)
  68.       (help @copyfiles-help)
  69.  
  70.   )
  71.  
  72. (complete 80)
  73.  
  74.   (copyfiles
  75.  
  76.       (prompt "Shall I install the header file ?\n\n(Includes author's history notes)")
  77.       (pattern "header.txt#?")
  78.       (source "misc/")
  79.       (dest "help:english/")
  80.       (confirm)
  81.       (infos)
  82.       (help @copyfiles-help)
  83.  
  84.   )
  85.  
  86. (complete 100)
  87.  
  88.   (exit "All required files are installed now.\n\nPlease have a look at BootGauge's documentation how to modifing the startup-sequence.\n\nAnd don't forget - BootGauge is GIFTWARE !")
  89.  
  90.  
  91.